home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 38
/
Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso
/
Aminet
/
docs
/
help
/
arexxbegin.lha
/
ARexx_For_Beginners
/
Articles_01-10
/
Example10-1.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1995-08-02
|
95 b
|
8 lines
/* Example10-1 */
SAY 'The 5 times table'
DO x = 1 TO 10
SAY 'Five times' x '=' x * 5
END